home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / sheriffa / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  1.8 KB  |  64 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__9FE45CD8_230F_11D1_A3B6_000000000000__INCLUDED_)
  6. #define AFX_MAINFRM_H__9FE45CD8_230F_11D1_A3B6_000000000000__INCLUDED_
  7.  
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11.  
  12. class CMainFrame : public CFrameWnd
  13. {
  14. protected: // create from serialization only
  15.     DECLARE_DYNCREATE(CMainFrame)
  16.  
  17. // Attributes
  18. public:
  19.     UINT    m_nUpdateTimerID;
  20.  
  21. // Operations
  22. public:
  23.     CMainFrame();
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CMainFrame)
  28.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CMainFrame();
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38.  
  39. protected:  // control bar embedded members
  40.     CStatusBar  m_wndStatusBar;
  41.     CToolBar    m_wndToolBar;
  42.  
  43. // Generated message map functions
  44. protected:
  45.     //{{AFX_MSG(CMainFrame)
  46.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  47.     afx_msg void OnDestroy();
  48.     afx_msg void OnTimer(UINT nIDEvent);
  49.     afx_msg void OnUpdateFeatureFeaturelevel1(CCmdUI* pCmdUI);
  50.     afx_msg void OnUpdateFeatureFeaturelevel2(CCmdUI* pCmdUI);
  51.     afx_msg void OnUpdateFeatureFeaturelevel3(CCmdUI* pCmdUI);
  52.     afx_msg void OnUpdateFeatureFeaturelevel4(CCmdUI* pCmdUI);
  53.     afx_msg void OnUpdateFeatureFeaturelevel5(CCmdUI* pCmdUI);
  54.     //}}AFX_MSG
  55.     DECLARE_MESSAGE_MAP()
  56. };
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.  
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  62.  
  63. #endif // !defined(AFX_MAINFRM_H__9FE45CD8_230F_11D1_A3B6_000000000000__INCLUDED_)
  64.